/**
* Feature image for Portfolio Categories (us_portfolio_category)
* اختيار الصورة من مكتبة الوسائط
*//**
* حقل الصورة في شاشة "إضافة" تصنيف جديد
*/
add_action( 'us_portfolio_category_add_form_fields', 'aae_add_portfolio_term_image_field', 10, 1 );
function aae_add_portfolio_term_image_field( $taxonomy ) {
?>
يمكنك كتابة الرابط يدويًا أو الضغط على زر “اختيار من الوسائط”.
term_id, 'feature_image_url', true );
?>
يمكنك كتابة الرابط يدويًا أو اختيار الصورة من مكتبة الوسائط.
taxonomy ) || 'us_portfolio_category' !== $screen->taxonomy ) {
return;
}// تحميل سكربتات مكتبة الوسائط
wp_enqueue_media();// كود الجافاسكربت
$js = "
jQuery(function($){
$(document).on('click', '.aae-upload-image-button', function(e){
e.preventDefault();var button = $(this);
var wrapper = button.closest('.term-group, .term-group-wrap');
var input = wrapper.find('#feature_image_url');
var preview = wrapper.find('.aae-term-image-preview img');var frame = wp.media({
title: 'اختيار صورة الميزة',
button: { text: 'استخدام هذه الصورة' },
multiple: false
});frame.on('select', function(){
var attachment = frame.state().get('selection').first().toJSON();
if (attachment && attachment.url){
input.val(attachment.url);
preview.attr('src', attachment.url).show();
}
});frame.open();
});
});
";wp_add_inline_script( 'jquery-core', $js );
}